home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
tools
/
gedscripts
/
pastex
/
quit_tex.ged
< prev
next >
Wrap
Text File
|
1995-03-09
|
392b
|
20 lines
/*
** ARexx Script to stop the "Start_TeX" script.
**
** 19.08.90 Georg Hessmann
*/
address "GOLDED.1"
OPTIONS RESULTS
IF (SHOW('P', 'Start_TeX')) THEN DO
'REQUEST BODY="Really stop ARexx TeX-server ?" BUTTON="Yep|Nope"'
if (RESULT == "1") THEN ADDRESS 'Start_TeX' 'quit'
END
ELSE
'REQUEST BODY="No TeX Server to quit"'
EXIT 0